home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1996 June
/
Software of the Month Club 1996 June.iso
/
pc
/
os2
/
utility
/
clock
/
helpwin.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-02-21
|
352b
|
15 lines
// Class HELPWIN: Encapsulates the startup/shutdown logic for an OS/2-PM help window.
#define INCL_WIN
#include <os2.h>
class HelpWindow
{
private:
HWND Handle ;
public:
HelpWindow ( HAB Anchor, HMODULE Module, USHORT Id, PSZ Filename, PSZ Title ) ;
~HelpWindow ( ) ;
HWND QueryHandle () { return ( Handle ) ; }
} ;